# -*- mode: snippet -*-
# name: for (int i)
# key: fori
# --

for (int i = 0; i < $1; i++)
{
    $0
}
